home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / WHO_S16._W_ < prev    next >
Text File  |  1997-07-26  |  762b  |  30 lines

  1. #
  2. # Watcom makefile for WHO_S [Win16]
  3. # Requires WIL16.DLL & WIL16.LIB
  4. #
  5. # TO MAKE: wmake -f who_s16._W_
  6. #
  7.  
  8. CCFLAGS = -c -oaxt -d2 -w4 -zW
  9.  
  10. OBJS = who_s.obj about.obj paint.obj str.obj
  11.  
  12. who_s.exe: $(OBJS) who_s.res who_s.def wil16.lib
  13.    wlink @who_s16.lnk
  14.    wrc who_s.res
  15.  
  16. who_s.res: $(OBJS) who_s.rc
  17.    wrc -r -bt=windows who_s.rc
  18.  
  19. about.obj: about.c about.h
  20.    wcl $(CCFLAGS)  about.c
  21.  
  22. paint.obj: paint.c paint.h wil.h
  23.     wcl $(CCFLAGS)  paint.c
  24.  
  25. who_s.obj: who_s.c wil.h
  26.    wcl $(CCFLAGS)  who_s.c
  27.  
  28. str.obj: str.c str.h wil.h
  29.    wcl $(CCFLAGS)  str.c
  30.